summaryrefslogtreecommitdiffstats
path: root/src/org/uic/barcode/ticket/api/impl/SimpleRegisteredLuggage.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/uic/barcode/ticket/api/impl/SimpleRegisteredLuggage.java')
-rw-r--r--src/org/uic/barcode/ticket/api/impl/SimpleRegisteredLuggage.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/org/uic/barcode/ticket/api/impl/SimpleRegisteredLuggage.java b/src/org/uic/barcode/ticket/api/impl/SimpleRegisteredLuggage.java
new file mode 100644
index 0000000..8704d6e
--- /dev/null
+++ b/src/org/uic/barcode/ticket/api/impl/SimpleRegisteredLuggage.java
@@ -0,0 +1,67 @@
+/*
+ *
+ */
+package org.uic.barcode.ticket.api.impl;
+
+import org.uic.barcode.ticket.api.spec.IRegisteredLuggage;
+
+// TODO: Auto-generated Javadoc
+/**
+ * The Class SimpleRegisteredLuggage.
+ */
+public class SimpleRegisteredLuggage implements IRegisteredLuggage{
+
+ /** The registration id. */
+ protected String registrationId;
+
+ /** The max weight. */
+ protected int maxWeight;
+
+ /** The max size. */
+ protected int maxSize;
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IRegisteredLuggage#getRegistrationId()
+ */
+ public String getRegistrationId() {
+ return registrationId;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IRegisteredLuggage#setRegistrationId(java.lang.String)
+ */
+ public void setRegistrationId(String registrationId) {
+ this.registrationId = registrationId;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IRegisteredLuggage#getMaxWeight()
+ */
+ public int getMaxWeight() {
+ return maxWeight;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IRegisteredLuggage#setMaxWeight(int)
+ */
+ public void setMaxWeight(int maxWeight) {
+ this.maxWeight = maxWeight;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IRegisteredLuggage#getMaxSize()
+ */
+ public int getMaxSize() {
+ return maxSize;
+ }
+
+ /* (nicht-Javadoc)
+ * @see org.uic.ticket.api.spec.IRegisteredLuggage#setMaxSize(int)
+ */
+ public void setMaxSize(int maxSize) {
+ this.maxSize = maxSize;
+ }
+
+
+
+}